The purpose of this notebook is to practice markdown!
from IPython.display import Image
def InputName():
"""
create function for user to input person's name
"""
global Name # make Name accessible outside of this functio'sn scope (bad form, I know)
Name = input("Name the person: ")
return Name
InputName()
'Alan'
print("This is", Name)
Image("https://upload.wikimedia.org/wikipedia/en/9/97/Alan_Watts.png")
This is Alan
Image("https://upload.wikimedia.org/wikipedia/commons/f/fc/BeachFun.jpg", width=500, height=500)